home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / graphic.zip / SQUARE.C < prev   
Text File  |  1991-12-24  |  640b  |  20 lines

  1. /**********************************************************************
  2. SQUARE
  3. Description - draws a square
  4. **********************************************************************
  5. Function - square(x,y,side)
  6. Input - xy coord of upper left corner, length of one side
  7. Output - to the screen
  8. #includes - none
  9. #defines  - none
  10. Routines Called - rectangle, line, plotxy
  11. Notes -
  12. **********************************************************************/
  13. square(x,y,side)
  14. int x,y,side;
  15. {
  16.   rectangle(x,y,side,side);
  17.   return;
  18. }
  19. /******************** end of function ********************************/
  20.